From 7845854ca2790d9b6c13346538b27c2bf2f47879 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 22 Aug 2017 10:24:45 +0100 Subject: [PATCH] build: Fix macOS linker compatibility flags The linker on macOS does not support '=' in its command line; there's no guarantee that we are using the correct compatibility versions compared to the Autotools build, but for that we'll need to build GTK+ master on macOS. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 19279316bc..158e5c871b 100644 --- a/meson.build +++ b/meson.build @@ -303,7 +303,7 @@ endif # Maintain compatibility with autotools if host_machine.system() == 'darwin' - common_ldflags += [ '-compatibility_version=1', '-current_version=1.0', ] + common_ldflags += [ '-compatibility_version 1', '-current_version 1.0', ] endif confinc = include_directories('.') -- 2.30.2